home *** CD-ROM | disk | FTP | other *** search
/ IRIX Base Documentation 2002 November / SGI IRIX Base Documentation 2002 November.iso / usr / share / catman / p_man / cat3 / SCSL / clacrt.z / clacrt
Encoding:
Text File  |  2002-10-03  |  3.0 KB  |  133 lines

  1.  
  2.  
  3.  
  4. CCCCLLLLAAAACCCCRRRRTTTT((((3333SSSS))))                                                          CCCCLLLLAAAACCCCRRRRTTTT((((3333SSSS))))
  5.  
  6.  
  7.  
  8. NNNNAAAAMMMMEEEE
  9.      CLACRT - perform the operation  ( c s )( x ) ==> ( x ) ( -s c )( y ) ( y
  10.      )  where c and s are complex and the vectors x and y are complex
  11.  
  12. SSSSYYYYNNNNOOOOPPPPSSSSIIIISSSS
  13.      SUBROUTINE CLACRT( N, CX, INCX, CY, INCY, C, S )
  14.  
  15.          INTEGER        INCX, INCY, N
  16.  
  17.          COMPLEX        C, S
  18.  
  19.          COMPLEX        CX( * ), CY( * )
  20.  
  21. IIIIMMMMPPPPLLLLEEEEMMMMEEEENNNNTTTTAAAATTTTIIIIOOOONNNN
  22.      These routines are part of the SCSL Scientific Library and can be loaded
  23.      using either the -lscs or the -lscs_mp option.  The -lscs_mp option
  24.      directs the linker to use the multi-processor version of the library.
  25.  
  26.      When linking to SCSL with -lscs or -lscs_mp, the default integer size is
  27.      4 bytes (32 bits). Another version of SCSL is available in which integers
  28.      are 8 bytes (64 bits).  This version allows the user access to larger
  29.      memory sizes and helps when porting legacy Cray codes.  It can be loaded
  30.      by using the -lscs_i8 option or the -lscs_i8_mp option. A program may use
  31.      only one of the two versions; 4-byte integer and 8-byte integer library
  32.      calls cannot be mixed.
  33.  
  34. PPPPUUUURRRRPPPPOOOOSSSSEEEE
  35.      CLACRT performs the operation ( c s )( x ) ==> ( x ) ( -s c )( y ) ( y )
  36.      where c and s are complex and the vectors x and y are complex.
  37.  
  38. AAAARRRRGGGGUUUUMMMMEEEENNNNTTTTSSSS
  39.      N       (input) INTEGER
  40.              The number of elements in the vectors CX and CY.
  41.  
  42.      CX      (input/output) COMPLEX array, dimension (N)
  43.              On input, the vector x.  On output, CX is overwritten with c*x +
  44.              s*y.
  45.  
  46.      INCX    (input) INTEGER
  47.              The increment between successive values of CX.  INCX <> 0.
  48.  
  49.      CY      (input/output) COMPLEX array, dimension (N)
  50.              On input, the vector y.  On output, CY is overwritten with -s*x +
  51.              c*y.
  52.  
  53.      INCY    (input) INTEGER
  54.              The increment between successive values of CY.  INCY <> 0.
  55.  
  56.      C       (input) COMPLEX
  57.              S       (input) COMPLEX C and S define the matrix [  C   S  ].  [
  58.              -S   C  ]
  59.  
  60.  
  61.  
  62.  
  63.                                                                         PPPPaaaaggggeeee 1111
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70. CCCCLLLLAAAACCCCRRRRTTTT((((3333SSSS))))                                                          CCCCLLLLAAAACCCCRRRRTTTT((((3333SSSS))))
  71.  
  72.  
  73.  
  74. SSSSEEEEEEEE AAAALLLLSSSSOOOO
  75.      INTRO_LAPACK(3S), INTRO_SCSL(3S)
  76.  
  77.      This man page is available only online.
  78.  
  79.  
  80.  
  81.  
  82.  
  83.  
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.                                                                         PPPPaaaaggggeeee 2222
  130.  
  131.  
  132.  
  133.